home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / cdity / ModeProSrc.lha / Prefs / IsOpen.c < prev    next >
C/C++ Source or Header  |  1999-01-23  |  470b  |  27 lines

  1. #include "/modepro.h"
  2.  
  3. /*
  4. // things to do if MPP is already running
  5. void PrefsInit(void)
  6. {
  7.   struct MsgPort *rp;
  8.   
  9.   if(rp=CreateMsgPort())
  10.   {
  11.     if(Arg_Import)
  12.     {
  13.       struct MPMessage import;
  14.       
  15.       import.mp_Message.mn_Length=sizeof(import);
  16.       import.mp_Message.mn_Length=rp;
  17.       import.Command=MPTD_IMPORT;
  18.       import.Data=Arg_Import;
  19.       
  20.       PutMsg(&MPSem->PrefsToDoPort,&import);
  21.       WaitPort(rp);
  22.     }
  23.     DeleteMsgPort(rp);
  24.   }
  25. }
  26.  
  27. */